home *** CD-ROM | disk | FTP | other *** search
/ Amiga Developer CD 2.1 / Amiga Developer CD v2.1.iso / NDK / NDK_1.3 / Include-Strip1.3 / include.h / exec / lists.h < prev    next >
Encoding:
C/C++ Source or Header  |  1988-07-15  |  332 b   |  19 lines

  1. #ifndef    EXEC_LISTS_H
  2. #define    EXEC_LISTS_H
  3. #ifndef    EXEC_NODES_H
  4. #include    "exec/nodes.h"
  5. #endif    !EXEC_NODES_H
  6. struct    List    {
  7. struct    Node    *lh_Head;
  8. struct    Node    *lh_Tail;
  9. struct    Node    *lh_TailPred;
  10. UBYTE    lh_Type;
  11. UBYTE    l_pad;
  12. };
  13. struct    MinList    {
  14. struct    MinNode    *mlh_Head;
  15. struct    MinNode    *mlh_Tail;
  16. struct    MinNode    *mlh_TailPred;
  17. };
  18. #endif
  19.